*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.body{
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 50vh;
    background-color: rgb(255, 255, 255);
}

footer{
    position: relative;
    width: 100%;
    font-family: poppins, sans-serif;
    background-color: rgb(53 134 255);
    min-height: 100px;
    padding: 20px 50px ;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
} 
footer p{
    width: 50%;
}
.aboutUs{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-size: 14px;
}
footer .icon, footer .menu{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}
footer .icon li, footer .menu li, header .pages li, section .boite .bouton li {
    list-style: none;
}
footer .icon li a{
    /* border: 5px solid black; */
    font-size: 1.5em;
    color: white;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}
footer .icon li a:hover{
    transform: translateY(-10px);
}
footer .menu li a{
    font-size: 1.2em;
    color: white;
    margin: 0 10px;
    display: inline-block;
    text-decoration: none;
    opacity: 0.75;
}
footer .menu li a:hover{
    opacity:1 ;
}
footer p{
    color: white;
    text-align: center;
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 1.2em;
}
footer .eau{
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background:url("eau.png");
    background-size: 1000px 100px;
}
footer .eau#eau1{
    z-index: 1000;
    opacity: 1;
    bottom: 0;
    animation: pape 4s linear infinite;
}
@keyframes pape {
    0%{
        background-position-x: 1000px;
    }
    100%{
        background-position-x: 0px;
    }
}
footer .eau#eau2{
    z-index: 999;
    opacity: 0.5;
    bottom: 10px;
    animation: pape1 4s linear infinite;
}
@keyframes pape1 {
    0%{
        background-position-x: 0px;
    }
    100%{
        background-position-x: 1000px;
    }
}
footer .eau#eau3{
    z-index: 1000;
    opacity: 0.2;
    bottom: 15px;
    animation: pape3 2s linear infinite;
}
@keyframes pape3 {
    0%{
        background-position-x: 1000px;
    }
    100%{
        background-position-x: 0px;
    }
}